home *** CD-ROM | disk | FTP | other *** search
/ Qu.......ke Neue Level / KroGer Software GmbH - Qu_ke.iso / UTILITY / PRG8.ZIP / UNBSP.C < prev    next >
C/C++ Source or Header  |  1996-03-03  |  2KB  |  75 lines

  1. /*
  2.  * Unbsp.c - Uses the routines in the QEU library to extract data
  3.  *           from a Quake BSP file.
  4.  *
  5.  * Do whatever you want with this file, but don't blame me if
  6.  * something doesn't work.  If you manage to destroy your hard disk
  7.  * with it, that's too bad for you...  Use it at your own risks!
  8.  */
  9.  
  10. #include "qeu.h"
  11. #include "q_misc.h"
  12. #include "q_files.h"
  13. #include "f_bsp.h"
  14.  
  15. void main(int argc, char *argv[])
  16. {
  17.   char      *filename = NULL;
  18.   FILE      *file;
  19.   int        ftype;
  20.   BSPDirPtr  dir;
  21.   UInt16     dirsize;
  22.   Bool       view = FALSE;
  23.   char      *dirname = NULL;
  24.  
  25.   /* read the parameters... */
  26.   for (argv++, argc--; argc && **argv == '-'; argv++, argc--)
  27.     if ((*argv)[1] == 'h')
  28.       {
  29.     fprintf(stderr, "UNBSP %s by Raphael Quinet\n\n", QEU_VERSION);
  30.     fprintf(stderr, "Usage: unbsp [-h] [-v] [-d <directory>] file.bsp [entryname...]\n");
  31.     fprintf(stderr, "       -h  -- display this help screen\n");
  32.     fprintf(stderr, "       -v  -- view the contents of the bsp file without extracting any data\n");
  33.     fprintf(stderr, "       -d  -- use the specified directory for extraction\n");
  34.     fprintf(stderr, "By default, unbsp will extract all entries from the BSP file in a directory\n");
  35.     fprintf(stderr, "which has the same name as the BSP file but the extension '.dir'.  If some\n");
  36.     fprintf(stderr, "names are given after the file name, only these entries will be extracted.\n");
  37.     exit(1);
  38.       }
  39.     else if ((*argv)[1] == 'v')
  40.       view = TRUE;
  41.     else if ((*argv)[1] == 'd' && argc-- > 1)
  42.       dirname = *++argv;
  43.     else
  44.       ProgError("Invalid argument (%s).  Use unbsp -h for help.", *argv);
  45.   if (argc > 0)
  46.     filename = *argv;
  47.   else
  48.     ProgError("Missing argument.  Use unbsp -h for help.");
  49.   if (dirname == NULL)
  50.     dirname = ChangeFileExtension(filename, NULL, "dir");
  51.  
  52.   /* open the BSP file... */
  53.   file = OpenFileReadMagic(filename, &ftype);
  54.   if (file == NULL)
  55.     ProgError("File not found (%s)", filename);
  56.   if (ftype != FTYPE_BSP)
  57.     ProgError("File is not a BSP file (%s)", filename);
  58.  
  59.   /* do something... */
  60.   dir = ReadBSPDirectory(file, 0, &dirsize);
  61.   if (dir == NULL)
  62.     ProgError("Cannot read main directory from %s", filename);
  63.   if (view == TRUE)
  64.     DumpBSPDirectory(stdout, dir, dirsize);
  65.   else
  66.     {
  67.       if (UnBSPFile(stdout, file, 0, dir, dirsize, dirsize, dirname) == FALSE)
  68.     ProgError("Could not unpack all entries from %s", filename);
  69.     }
  70.   
  71.   /* close the file and say goodbye */
  72.   fclose(file);
  73.   exit(0);
  74. }
  75.